home *** CD-ROM | disk | FTP | other *** search
Makefile | 2003-08-08 | 1.0 KB | 63 lines |
- #
- # @(#)Makefile 1.36 01/10/26 08:21:54
- #
- # Makefile to compile Java3D test programs
- #
- # variables that need values to build succesfully:
- # CLASSPATH The path for all imported Java Classes
-
- .KEEP_STATE:
-
- SUBDIRS = \
- AlternateAppearance \
- Appearance \
- AppearanceMixed \
- AWT_Interaction \
- ConicWorld \
- ConfiguredUniverse \
- Background \
- FPSCounter \
- FourByFour \
- GearTest \
- GeometryCompression \
- GeometryByReference \
- HelloUniverse \
- Lightwave \
- LOD \
- ModelClip \
- Morphing \
- ObjLoad \
- OffScreenCanvas3D \
- OrientedShape3D \
- PackageInfo \
- PickTest \
- PickText3D \
- PlatformGeometry \
- PrintCanvas3D \
- PureImmediate \
- ReadRaster \
- Sound \
- SphereMotion \
- SplineAnim \
- Text2D \
- Text3D \
- TextureByReference \
- TextureTest \
- TickTockCollision \
- TickTockPicking \
- Timer \
- VirtualInputDevice
-
- SUBDIR_TARGETS = all clean clean-nuke
-
- default-target: all
-
- install:
- @echo "install target is obsolete"
-
- $(SUBDIR_TARGETS):
- -@for i in $(SUBDIRS); do ( \
- echo "cd $$i; make $@"; \
- cd $$i ; make $@); \
- done
-